home *** CD-ROM | disk | FTP | other *** search
- REM $INCLUDE: 'fastgraf.bi'
-
- DEFINT A-Z
-
- DECLARE SUB PutString(CharString$,Row,Column)
-
- OldMode = FGgetmode
- FGsetmode 3
- FGcursor 0
-
- FGsetattr 14, 0, 0
- CALL PutString("yellow",0,0)
-
- FGsetattr 10, 0, 0
- FGwhere Row, Column
- CALL PutString("green",Row,Column+1)
-
- FGsetattr 12, 0, 1
- FGwhere Row, Column
- CALL PutString("blinking",Row,Column+1)
-
- FGsetattr 12, 7, 0
- CALL PutString(" Press any key. ",24,0)
- FGwaitkey
-
- FGsetmode OldMode
- FGreset
-
- END
-
-
- SUB PutString(CharString$,Row,Column)
-
- FGlocate Row, Column
- FGText CharString$, LEN(CharString$)
-
- END SUB